{% extends "base.html" %} {% block title %}{{ SITENAME }} — {{ article.title }}{% endblock %} {% block favicon %}{{ article.category }}.png{% endblock favicon %} {% block body_class %}article {{ article.category }}{% if article.hide_inserted_links %} hide_inserted_links{% endif %}{% endblock %} {% block head %} {{ super() }} {% if article.description %} {% endif %} {% if article.category == 'visuals' %} {% endif %} {% if article.slug == 'worksessions-gallery' %} {% endif %} {% if article.slug == 'apple-soup' %} {% endif %} {% if article.category == 'roots' %} {% endif %} {% endblock %} {% block body %} {{ super() }}
{% if article.category %}
{{ article.category }}
{% endif %}

{{ article.title }}

By {{ article.authors|join(', ') }}
{% if article.category == 'roots' %} {% for p in pages %} {% if p.title == "definition short" %} {{ p.content }} {% endif %} {% endfor %}
{% if article.license %}

{% set FAL = "All images & text under Free Art License (FAL)" %} {% if article.license is string %} {{ article.license | replace("fal", FAL) }} {% else %} {% for license_line in article.license %} {{ license_line | replace("fal", FAL) }} {% if not loop.last %}
{% endif %} {% endfor %} {% endif %}

{% endif %}
{% if article.sourcecode %} Explore sourcecode on gitlab.constantvzw.org {% endif %}
{% if article.category == 'interviews' %}
{% for p in pages %} {% if p.title == "Interviews introduction" %} {{ p.content }} {% endif %} {% endfor %}
{% endif %} {{ article.content }} {% block extra_article_content %}{% endblock %}
{% endblock body %}